From: Aaron Schulz Date: Mon, 11 Jul 2011 22:17:15 +0000 (+0000) Subject: Added explicit parse() call to wfMessage object X-Git-Tag: 1.31.0-rc.0~28923 X-Git-Url: http://git.cyclocoop.org/%22.%24info%5B?a=commitdiff_plain;h=7cb45c0c30a11de35ce32e85a6f175e70a77a987;p=lhc%2Fweb%2Fwiklou.git Added explicit parse() call to wfMessage object --- diff --git a/includes/specials/SpecialBlockList.php b/includes/specials/SpecialBlockList.php index d192fad6a3..a7b99e7f6d 100644 --- a/includes/specials/SpecialBlockList.php +++ b/includes/specials/SpecialBlockList.php @@ -249,7 +249,7 @@ class BlockListPager extends TablePager { case 'ipb_target': if( $row->ipb_auto ){ - $formatted = wfMessage( 'autoblockid', $row->ipb_id ); + $formatted = wfMessage( 'autoblockid', $row->ipb_id )->parse(); } else { list( $target, $type ) = Block::parseTarget( $row->ipb_address ); switch( $type ){